discuz

推荐列表 站点导航

当前位置:首页 > 建站教程 > discuz >

帖子列表页获取封面图片_discuz二次开发教程

来源:网络整理  作者:网络  发布时间:2020-12-13 15:03
找到文件 source/module/forum/forum_forumdisplay.php 大于809行找到如下代码 if($thread[rushreply]) { $rushtids[$thread[tid]] = $thread[tid];...

source/module/forum/forum_forumdisplay.php

 


大于809行找到如下代码

 

if($thread['rushreply']) {

        $rushtids[$thread['tid']] = $thread['tid'];

}

 


在这段代码下面添加如下代码:

 

        $threada= C::t('forum_attachment')->fetch_all_by_id('tid', $thread['tid'], 'aid');

        $threadaid = reset($threada);

        $threadpic = C::t('forum_attachment_n')->fetch_by_aid_uid($threadaid['tableid'], $threadaid['aid'], $thread['authorid']);

        $thread['pic'] = $threadpic['attachment'];

 



这样就可以在列表页模板中使用

$thread['pic']


来加载一张封面图片,但是需要注意这样是加载最后一张插入的图片!
如果要改为第一张图片还需要修改另外的一个文件

找到文件

 

source/class/table/table_forum_announcement.php

 


找到

 

$orderby = 'ORDER BY '.DB::order($orderby, 'DESC');

 


修改为:

 

$orderby = 'ORDER BY '.DB::order($orderby, 'ASC');

 




好了这样就可在列表页,加载发帖时上传的第一张图片,做为封面来调用了!

相关热词: discuz 教程

本站内容来源于网络,如有侵权请与我们联系,我们会及时删除,我们深感抱歉!
注:本站所有信息仅供用于网络技术学习参考,学习中请遵循相关法律法规!

本文地址: https://v30.fanwenzhu.com/jz/discuz/3321.shtml

Copyright © www.juheyunku.com      关于 | 合作 | 声明 | 联系 | 更新 | 地图 | Tags

帖子列表页获取封面图片_discuz二次开发教程

2020-12-13 编辑:网络

source/module/forum/forum_forumdisplay.php

 


大于809行找到如下代码

 

if($thread['rushreply']) {

        $rushtids[$thread['tid']] = $thread['tid'];

}

 


在这段代码下面添加如下代码:

 

        $threada= C::t('forum_attachment')->fetch_all_by_id('tid', $thread['tid'], 'aid');

        $threadaid = reset($threada);

        $threadpic = C::t('forum_attachment_n')->fetch_by_aid_uid($threadaid['tableid'], $threadaid['aid'], $thread['authorid']);

        $thread['pic'] = $threadpic['attachment'];

 



这样就可以在列表页模板中使用

$thread['pic']


来加载一张封面图片,但是需要注意这样是加载最后一张插入的图片!
如果要改为第一张图片还需要修改另外的一个文件

找到文件

 

source/class/table/table_forum_announcement.php

 


找到

 

$orderby = 'ORDER BY '.DB::order($orderby, 'DESC');

 


修改为:

 

$orderby = 'ORDER BY '.DB::order($orderby, 'ASC');

 




好了这样就可在列表页,加载发帖时上传的第一张图片,做为封面来调用了!

本站内容来源于网络,如有侵权请与我们联系,我们会及时删除,我们深感抱歉!
注:本站所有信息仅供学习参考!
本文地址为 https://v30.fanwenzhu.com/jz/discuz/3321.shtml

相关文章

风云图片

推荐阅读

返回discuz频道首页